home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / network / dvfax.zip / README < prev    next >
Text File  |  1993-02-23  |  3KB  |  87 lines

  1. This set of files lets you monitor a Class I FAX modem in a DESQview 
  2. background window.  Other DESQview activities are suspended only during the 
  3. actual FAX reception itself. 
  4.  
  5. If you are unable to make a Class I FAX modem work properly in a multitasking 
  6. environment, this set of files is for you.  Modem manufacturer's tech reps 
  7. told me Class I faxes would not work in a time sharing environment, because 
  8. they must have the full attention of the CPU. 
  9.  
  10. It is too costly to dedicate a machine to waiting for FAXs.  That's why this 
  11. set of files was created. 
  12.  
  13. You run TRAPFAX.BAT in a background window.  If your FAX phone rings 
  14. DESQview will switch to the window TRAPFAX is running in, receive the FAX 
  15. and return to an active window.  Multitasking will be suspended while the 
  16. FAX is being received, but will resume immediately after the receipt's 
  17. finished. 
  18.  
  19. The required functions are included as separate utilities so you can change 
  20. the way they're used to accommodate to your FAX software.  Also, they can be 
  21. used individually for various purposes.  
  22.  
  23. As an example, to know if anyone calls when your are out; or, if you want to 
  24. make a record of the date and time of all phone calls, you can run the 
  25. following batch file that uses CHK4RING: 
  26.  
  27. CALLS.BAT
  28.  
  29. :START
  30. @ECHO off
  31. CHK4RING com1 ps2n
  32. IF errorlevel 50 GOTO END
  33. ECHO | MORE | DATE | FIND "Current" >> CALLS
  34. ECHO | MORE | TIME | FIND "Current" >> CALLS
  35. ECHO . >> CALLS
  36. GOTO START
  37. :END
  38.  
  39. This batch file will record the date and time of each phone ring in a file 
  40. named CALLS.  So you have a record of when and how many times the phone rang 
  41. while you were out.  
  42.  
  43. As another example, if you need a cheap alarm clock, try this:
  44.  
  45. ALARM.BAT
  46.  
  47. @ECHO off
  48. KILLTIME 1000
  49. :REPEAT
  50. ECHO 
  51. KILLTIME 5
  52. GOTO REPEAT
  53.  
  54. The -->  <--  in the 4th line is the ASCII character 007, BELL or BEEP.  
  55. Echoing (printing) it makes a beep sound.  4 beeps in this case.  The 5 in 
  56. the line 5 repeats the alarm every 5 seconds, until you stop it by 
  57. pressing Control-Break.  Change the 1000 in line 2 to the number of seconds 
  58. you want to wait before the alarm sounds.  Or, you can replace the 1000 with 
  59. %1, like this,  killtime %1  .  Then, when you run the batch file, add the 
  60. number of seconds you want to wait after the word alarm:
  61.  
  62.         C:>alarm 1000
  63.  
  64. KILLTIME works to a little more than 32000 seconds, almost 9 hours. 
  65.  
  66. The utilities in this set named CheckForRing (CHK4RING), GOFRONT and GONEXT 
  67. are Copyright SeaCove Marine Software.  The entire file set is being made 
  68. available free as a promotion for: 
  69.  
  70.                              T o n e B a n k e r
  71.  
  72.                                     the 
  73.                         * Pay * Bills * By * Modem *
  74.                                   program
  75.  
  76.      Available on:    The  R A T I O N A L  Place BBS    713-280-8504
  77.  
  78.  
  79.  
  80. You are encouraged to pass this file set around, and post it on BBSs.  
  81.  
  82. As the only condition of use, and distribution, you must agree to distribute 
  83. the *ENTIRE* file set without modifying any of the files.  We hope you find 
  84. TRAPFAX useful.
  85.  
  86.      Enter    C:>free       at the DOS prompt
  87.